home *** CD-ROM | disk | FTP | other *** search
- /* ----------------------------------------------------------------------
- file.c
- ---------------------------------------------------------------------- */
-
- #include "the_defines.h"
- #include "the_globals.h"
- #include "the_prototypes.h"
-
- /* ----------------------------------------------------------------------
- DoMenuFile
- ---------------------------------------------------------------------- */
- void DoMenuFile(theItem)
- int theItem;
- {
- switch (theItem)
- {
- case FILE_QUIT:
- FileQuit();
- break;
- default:
- break;
- }
- }
-
- /* ----------------------------------------------------------------------
- FileQuit
- ---------------------------------------------------------------------- */
- void FileQuit()
- {
- gDone = true;
- }
-